NavigateResponse

data class NavigateResponse(frameId: FrameId, loaderId: LoaderId?, errorText: String?)

Represents response frame that is returned from Page#navigate operation call. Navigates current page to the given URL.

See also

Constructors

NavigateResponse
Link copied to clipboard
fun NavigateResponse(frameId: FrameId, loaderId: LoaderId? = null, errorText: String? = null)

Properties

errorText
Link copied to clipboard
val errorText: String? = null
User friendly error message, present if and only if navigation has failed.
frameId
Link copied to clipboard
val frameId: FrameId
Frame id that has navigated (or failed to navigate)
loaderId
Link copied to clipboard
val loaderId: LoaderId? = null
Loader identifier.

Sources

jvm source
Link copied to clipboard